From d4d39de054a6f6c5a474aee62999a8ea7c2fd180 Mon Sep 17 00:00:00 2001 From: Vitaly Kuznetsov Date: Thu, 28 May 2015 10:55:43 +0200 Subject: [PATCH] public: fix xen_domctl_monitor_op_t definition It seems xen_domctl_monitor_op_t was supposed to be a typedef for struct xen_domctl_monitor_op and not the non-existent xen_domctl__op. Signed-off-by: Vitaly Kuznetsov --- xen/include/public/domctl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xen/include/public/domctl.h b/xen/include/public/domctl.h index 53cdf082a8..88f8002ec1 100644 --- a/xen/include/public/domctl.h +++ b/xen/include/public/domctl.h @@ -1036,7 +1036,7 @@ struct xen_domctl_monitor_op { } mov_to_msr; } u; }; -typedef struct xen_domctl__op xen_domctl_monitor_op_t; +typedef struct xen_domctl_monitor_op xen_domctl_monitor_op_t; DEFINE_XEN_GUEST_HANDLE(xen_domctl_monitor_op_t); struct xen_domctl { -- 2.30.2